home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Freeware 2002 November
/
SGI Freeware 2002 November - Disc 3.iso
/
dist
/
fw_qt3.idb
/
usr
/
freeware
/
Qt
/
examples
/
themes
/
metal.h.z
/
metal.h
Wrap
C/C++ Source or Header
|
2002-04-08
|
2KB
|
71 lines
/****************************************************************************
** $Id: qt/metal.h 3.0.3 edited Dec 4 19:47 $
**
** Definition of the Metal Style for the themes example
**
** Created : 979899
**
** Copyright (C) 1997 by Trolltech AS. All rights reserved.
**
** This file is part of an example program for Qt. This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#ifndef METAL_H
#define METAL_H
#include <qwindowsstyle.h>
#include <qpalette.h>
#ifndef QT_NO_STYLE_WINDOWS
class MetalStyle : public QWindowsStyle
{
public:
MetalStyle();
void polish( QApplication*);
void unPolish( QApplication*);
void polish( QWidget* );
void unPolish( QWidget* );
void drawPrimitive( PrimitiveElement pe,
QPainter *p,
const QRect &r,
const QColorGroup &cg,
SFlags flags = Style_Default,
const QStyleOption& = QStyleOption::Default) const;
void drawControl( ControlElement element,
QPainter *p,
const QWidget *widget,
const QRect &r,
const QColorGroup &cg,
SFlags how = Style_Default,
const QStyleOption& = QStyleOption::Default ) const;
void drawComplexControl( ComplexControl cc,
QPainter *p,
const QWidget *widget,
const QRect &r,
const QColorGroup &cg,
SFlags how = Style_Default,
SCFlags sub = SC_All,
SCFlags subActive = SC_None,
const QStyleOption& = QStyleOption::Default ) const;
int pixelMetric( PixelMetric, const QWidget * ) const;
private:
void drawMetalFrame( QPainter *p, int x, int y, int w, int h ) const;
void drawMetalGradient( QPainter *p, int x, int y, int w, int h,
bool sunken, bool horz, bool flat=FALSE ) const;
void drawMetalButton( QPainter *p, int x, int y, int w, int h,
bool sunken, bool horz, bool flat=FALSE ) const;
QPalette oldPalette;
};
#endif
#endif